How Well Do You Know Sand Coin? Take the Sand Coin quiz to find out how much you know! 6 Questions 1What is the purpose of the SAND Token? All of the above To vote on platform governance decisions To buy LAND Tokens within the game As a medium of exchange for in-game transactions 2In which year was the SAND Token launched? 2021 2015 2010 2020 3What is the maximum supply of SAND Tokens? 153,600,000 300,000,000 300,000,000,000 30,300,000,000 4What is LAND? A Crypto Exchange A unit for NFT Token exchange A blockchain network Digital real estate within The Sandbox Metaverse 5How many LANDs are there? 989,644 166,464 728,234,154 6What are GEM and CATALYST? Metaverse platforms NFT Collections Blockchain networks Define the attributes of ASSETs Check Answers This test was prepared by Metaverseplanet.net document.getElementById('sand-coin-quiz-form').onsubmit = function(event) { event.preventDefault(); const correctAnswers = { q1: "All of the above", q2: "2020", q3: "153,600,000", q4: "Digital real estate within The Sandbox Metaverse", q5: "166,464", q6: "Define the attributes of ASSETs" }; let score = 0; const formElements = document.getElementById('sand-coin-quiz-form').elements; for (let key in correctAnswers) { if (formElements[key]) { const userAnswer = formElements[key].value; if (userAnswer === correctAnswers[key]) { score++; } } } const incorrectAnswers = 6 - score; let title = ""; if (score === 6) { title = "Sand Coin Expert"; } else if (score >= 4) { title = "Sand Coin Enthusiast"; } else if (score >= 2) { title = "Sand Coin Learner"; } else { title = "Sand Coin Beginner"; } const resultHTML = ` Your Quiz Results Correct Answers: ${score} Incorrect Answers: ${incorrectAnswers} Your Title: ${title} For more information about Sand Coin and the crypto world, visit our Crypto Information and News Platform. `; document.getElementById('sand-coin-quiz-result').innerHTML = resultHTML; }; body { margin: 0; padding: 0; background-color: #000; font-family: Arial, sans-serif; } /* Main container: Transparent background with subtle border and shadow */ #sand-coin-quiz { max-width: 1200px; width: 100%; padding: 20px; background: none; border: 1px solid #222; border-radius: 8px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); color: #ffffff; margin: 20px auto; } /* Question boxes: Solid black background */ .question { margin-bottom: 20px; background-color: #000; padding: 15px; border: 1px solid #333; border-radius: 6px; } .question p { margin: 0 0 10px; font-size: 1.1rem; font-weight: bold; } /* Colored question numbers using the accent color (#c1205b) */ .question-number { background-color: #c1205b; color: #fff; display: inline-block; width: 30px; height: 30px; text-align: center; line-height: 30px; border-radius: 50%; margin-right: 10px; font-size: 16px; } button[type="submit"] { width: 100%; padding: 15px; font-size: 1.1rem; font-weight: bold; color: #ffffff; background-color: #c1205b; border: none; border-radius: 5px; cursor: pointer; transition: background-color 0.3s ease; } button[type="submit"]:hover { background-color: #a8194d; } .footer-text { font-size: 0.9rem; color: #ffffff; text-align: center; margin-top: 20px; opacity: 0.7; } #sand-coin-quiz-result { font-size: 1.2rem; font-weight: bold; color: #ffffff; margin-top: 20px; text-align: center; } .result-box { background-color: rgba(255, 255, 255, 0.1); padding: 20px; border-radius: 8px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); text-align: center; margin-top: 20px; } @media (max-width: 768px) { #sand-coin-quiz { width: 90%; padding: 15px; } }